home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1996 #6 / Amiga Plus CD - 1996 - No. 06.iso / pd / tools / mousestate / mouse.readme < prev    next >
Text File  |  1992-03-06  |  1KB  |  51 lines

  1. Short: Choose actions on state of mouse
  2. Uploader: mebby@enterprise.net (Michael Griggs)
  3. Author: mebby@enterprise.net (Michael Griggs)
  4. Type: util/boot
  5. Requires: OS 1.3
  6. Distribution: Aminet
  7.  
  8. Mouse allows you to execute different startup sequences depending on which
  9. mouse buttons are held down.  The program simply returns different codes in
  10. the RC environment variable:
  11.  
  12.     Button |  RC
  13.     -------------
  14.     Left       5
  15.     Right     10
  16.     Both      20
  17.     None       0
  18.  
  19.  
  20.  
  21. By using "IF" statements in your startup-sequence, you can choose different
  22. actions.  For example, if I hold down my left-mouse button during boot-up,
  23. a small menu appears allowing me to choose a small selection of programs. 
  24. If I hold nothing down, my normal startup-sequence is executed.
  25.  
  26. /--- Cut Here
  27.  
  28. Setpatch >NIL:
  29.  
  30. mouse
  31.  
  32. IF $RC=5
  33.     ...open menu...
  34. ENDIF
  35.  
  36. IF $RC=0
  37.     ...normal startup...
  38. ENDIF
  39.  
  40. /--- Cut Here
  41.  
  42.  
  43.  
  44.   Aminet: util/cdity/FindItGui.lha - GUI-based file-finding program.
  45.  
  46.   Aminet: util/sys/Execute.lha - Replaces Workbench "Execute Command..."
  47.                                  requester.
  48.  
  49.   Aminet: util/app/AppInfo.lha - File-type information Application Icon.
  50.  
  51.